home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / src / dcpp / test.c < prev    next >
Text File  |  1997-09-09  |  293b  |  17 lines

  1. /*
  2.  *    (c)Copyright 1992-1997 Obvious Implementations Corp.  Redistribution and
  3.  *    use is allowed under the terms of the DICE-LICENSE FILE,
  4.  *    DICE-LICENSE.TXT.
  5.  */
  6. #if FOO || BAR
  7. #error "FOO || BAR"
  8. #else
  9. #error "!(FOO || BAR)"
  10. #endif
  11.  
  12. #if FOO
  13. #error "FOO"
  14. #else
  15. #error "!FOO"
  16. #endif
  17.